home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day13 / webbrows.bpr < prev    next >
Encoding:
Text File  |  1998-02-08  |  4.4 KB  |  161 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = WebBrows.exe
  17. OBJFILES = WebBrows.obj WebBrwsU.obj
  18. RESFILES = WebBrows.res
  19. RESDEPEN = $(RESFILES) WebBrwsU.dfm
  20. LIBFILES =
  21. LIBRARIES = VCLX35.lib NMFast35.lib VCL35.lib
  22. SPARELIBS = VCL35.lib NMFast35.lib VCLX35.lib
  23. DEFFILE =
  24. PACKAGES = vclx35.bpi VCL35.bpi vcldb35.bpi vcldbx35.bpi dclocx35.bpi Qrpt35.bpi \
  25.   teeui35.bpi teedb35.bpi tee35.bpi dss35.bpi NMFast35.bpi inetdb35.bpi \
  26.   inet35.bpi VclMid35.bpi
  27. # ---------------------------------------------------------------------------
  28. PATHCPP = .;
  29. PATHASM = .;
  30. PATHPAS = .;
  31. PATHRC = .;
  32. DEBUGLIBPATH = $(BCB)\lib\debug
  33. RELEASELIBPATH = $(BCB)\lib\release
  34. # ---------------------------------------------------------------------------
  35. CFLAG1 = -Od -Hc -w -Ve -r- -a4 -k -y -v -vi- -c -b- -w-par -w-inl -Vx -tW
  36. CFLAG2 = -I$(BCB)\include;$(BCB)\include\vcl -H=$(BCB)\lib\vcl35.csm
  37. CFLAG3 =
  38. PFLAGS = -U$(BCB)\lib\release;$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
  39.   -I$(BCB)\include;$(BCB)\include\vcl -v -JPHN -M
  40. RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
  41. AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zd /d_RTLDLL /dUSEPACKAGES
  42. LFLAGS = -L$(BCB)\lib\release;$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) -aa -Tpe -x -v
  43. IFLAGS = -Gn
  44. # ---------------------------------------------------------------------------
  45. ALLOBJ = c0w32.obj $(OBJFILES)
  46. ALLRES = $(RESFILES)
  47. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mt.lib
  48. # ---------------------------------------------------------------------------
  49. !ifdef IDEOPTIONS
  50.  
  51. [Version Info]
  52. IncludeVerInfo=0
  53. AutoIncBuild=0
  54. MajorVer=1
  55. MinorVer=0
  56. Release=0
  57. Build=0
  58. Debug=0
  59. PreRelease=0
  60. Special=0
  61. Private=0
  62. DLL=0
  63. Locale=1033
  64. CodePage=1252
  65.  
  66. [Version Info Keys]
  67. CompanyName=
  68. FileDescription=
  69. FileVersion=1.0.0.0
  70. InternalName=
  71. LegalCopyright=
  72. LegalTrademarks=
  73. OriginalFilename=
  74. ProductName=
  75. ProductVersion=1.0.0.0
  76. Comments=
  77.  
  78. [Debugging]
  79. DebugSourceDirs=$(BCB)\source\vcl
  80.  
  81. [Parameters]
  82. RunParams=
  83. HostApplication=
  84.  
  85. !endif
  86.  
  87. # ---------------------------------------------------------------------------
  88. # MAKE SECTION
  89. # ---------------------------------------------------------------------------
  90. # This section of the project file is not used by the BCB IDE.  It is for
  91. # the benefit of building from the command-line using the MAKE utility.
  92. # ---------------------------------------------------------------------------
  93.  
  94. .autodepend
  95. # ---------------------------------------------------------------------------
  96. !if !$d(BCC32)
  97. BCC32 = bcc32
  98. !endif
  99.  
  100. !if !$d(DCC32)
  101. DCC32 = dcc32
  102. !endif
  103.  
  104. !if !$d(TASM32)
  105. TASM32 = tasm32
  106. !endif
  107.  
  108. !if !$d(LINKER)
  109. LINKER = ilink32
  110. !endif
  111.  
  112. !if !$d(BRCC32)
  113. BRCC32 = brcc32
  114. !endif
  115. # ---------------------------------------------------------------------------
  116. !if $d(PATHCPP)
  117. .PATH.CPP = $(PATHCPP)
  118. .PATH.C   = $(PATHCPP)
  119. !endif
  120.  
  121. !if $d(PATHPAS)
  122. .PATH.PAS = $(PATHPAS)
  123. !endif
  124.  
  125. !if $d(PATHASM)
  126. .PATH.ASM = $(PATHASM)
  127. !endif
  128.  
  129. !if $d(PATHRC)
  130. .PATH.RC  = $(PATHRC)
  131. !endif
  132. # ---------------------------------------------------------------------------
  133. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  134.     $(BCB)\BIN\$(LINKER) @&&!
  135.     $(LFLAGS) $(IFLAGS) +
  136.     $(ALLOBJ), +
  137.     $(PROJECT),, +
  138.     $(ALLLIB), +
  139.     $(DEFFILE), +
  140.     $(ALLRES)
  141. !
  142. # ---------------------------------------------------------------------------
  143. .pas.hpp:
  144.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  145.  
  146. .pas.obj:
  147.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  148.  
  149. .cpp.obj:
  150.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  151.  
  152. .c.obj:
  153.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  154.  
  155. .asm.obj:
  156.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  157.  
  158. .rc.res:
  159.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  160. # ---------------------------------------------------------------------------
  161.